home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 07-04.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  306b  |  25 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 16
  7.  
  8. FGsetcolor 14
  9. FGtext "yellow", 6
  10.  
  11. FGsetcolor 10
  12. FGtext " green", 6
  13.  
  14. FGsetcolor 7
  15. FGrect 0, 127, 336, 349
  16. FGsetcolor 12
  17. FGlocate 24, 0
  18. FGtext " Press any key. ", 16
  19. FGwaitkey
  20.  
  21. FGsetmode OldMode
  22. FGreset
  23.  
  24. END
  25.